Skip to content

Commit 188caf3

Browse files
committed
Change #include "..." to #include <...> in readme
1 parent 7575f85 commit 188caf3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ Both containers enable the numpy-style APIs of xtensor (see [the numpy to xtenso
4949

5050
```cpp
5151
#include <numeric> // Standard library import for std::accumulate
52-
#include "pybind11/pybind11.h" // Pybind11 import to define Python bindings
53-
#include "xtensor/xmath.hpp" // xtensor import for the C++ universal functions
52+
#include <pybind11/pybind11.h> // Pybind11 import to define Python bindings
53+
#include <xtensor/xmath.hpp> // xtensor import for the C++ universal functions
5454
#define FORCE_IMPORT_ARRAY
55-
#include "xtensor-python/pyarray.hpp" // Numpy bindings
55+
#include <xtensor-python/pyarray.hpp> // Numpy bindings
5656

5757
double sum_of_sines(xt::pyarray<double>& m)
5858
{
@@ -91,9 +91,9 @@ s
9191
**C++ code**
9292

9393
```cpp
94-
#include "pybind11/pybind11.h"
94+
#include <pybind11/pybind11.h>
9595
#define FORCE_IMPORT_ARRAY
96-
#include "xtensor-python/pyvectorize.hpp"
96+
#include <xtensor-python/pyvectorize.hpp>
9797
#include <numeric>
9898
#include <cmath>
9999

0 commit comments

Comments
 (0)