You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Formatters.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,4 +19,4 @@ Swift uses swiftformat as it's formatter. Take a look at [how to install here](h
19
19
20
20
## Typescript
21
21
22
-
Typescript uses eslint as it's linter. Take a look at [how to install here](https://eslint.org/docs/user-guide/getting-started). Run the following command `eslint ts/** --ext .ts` in the root directory of the project
22
+
Typescript uses eslint as it's linter. Take a look at [how to install here](https://eslint.org/docs/user-guide/getting-started). Run the following command `eslint ts/** --ext .ts` in the root directory of the project
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ maximum memory efficiency. It allows you to directly access serialized data with
34
34
```
35
35
./flatc --cpp --rust monster.fbs
36
36
```
37
-
37
+
38
38
Which generates `monster_generated.h` and `monster_generated.rs` files.
39
39
40
40
4. Serialize data
@@ -48,7 +48,7 @@ maximum memory efficiency. It allows you to directly access serialized data with
48
48
6. Read the data
49
49
50
50
Use the generated accessors to read the data from the serialized buffer.
51
-
51
+
52
52
It doesn't need to be the same language/schema version, FlatBuffers ensures the data is readable across languages and schema versions. See the [`Rust` example](https://github.com/google/flatbuffers/blob/master/samples/sample_binary.rs#L92-L106) reading the data written by `C++`.
Copy file name to clipboardExpand all lines: docs/source/contributing.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,17 +15,17 @@ repository.
15
15
Before we can use your contributions, you __must__ sign one of the following license agreements. The agreements are self-served at the following links.
16
16
17
17
Our code review process will automatically check if you have signed the CLA, so
18
-
don't fret. Though it may be prudent to check before spending a lot of time on
18
+
don't fret. Though it may be prudent to check before spending a lot of time on
19
19
contribution.
20
20
21
-
### Individual Contributions
21
+
### Individual Contributions
22
22
23
23
For individuals, the [Google Individual
24
24
Contributor License Agreement
25
25
(CLA)](https://cla.developers.google.com/about/google-individual?csw=1) which is
26
26
self served at the link. The CLA is required since you own the copyright to your
27
27
changes, even after your contribution becomes part of our codebase, so we need
28
-
your permission to use and distribute your code.
28
+
your permission to use and distribute your code.
29
29
30
30
### Corporate Contributions
31
31
@@ -67,7 +67,7 @@ pip install mkdocs-material
67
67
pip install mkdocs-redirects
68
68
```
69
69
70
-
Then, in the `root` directory of flatbuffers, run
70
+
Then, in the `root` directory of flatbuffers, run
71
71
72
72
```
73
73
mkdocs serve -f docs/mkdocs.yml
@@ -77,4 +77,4 @@ This will continually watch the repo for changes to the documentation and serve
77
77
the rendered pages locally.
78
78
79
79
Submit your documentation changes with your code changes and they will
80
-
automatically get published when your code is submitted.
80
+
automatically get published when your code is submitted.
0 commit comments