| Index: tools/gn/docs/language.md
|
| diff --git a/tools/gn/docs/language.md b/tools/gn/docs/language.md
|
| index 3aabd7902325507d5a2582c3da2296e862a61d7c..9499bbb409ef74b066ea151a114ce7ea948b9d8c 100644
|
| --- a/tools/gn/docs/language.md
|
| +++ b/tools/gn/docs/language.md
|
| @@ -518,7 +518,7 @@ if (target_cpu == "x64") {
|
| ```
|
|
|
| If a 64-bit target wants to depend on a 32-bit binary, it would specify
|
| -a dependency using `datadeps` (data deps are like deps that are only
|
| +a dependency using `data_deps` (data deps are like deps that are only
|
| needed at runtime and aren't linked, since you can't link a 32-bit and a
|
| 64-bit library).
|
|
|
| @@ -527,7 +527,7 @@ executable("my_program") {
|
| ...
|
| if (target_cpu == "x64") {
|
| # The 64-bit build needs this 32-bit helper.
|
| - datadeps = [ ":helper(//toolchains:32)" ]
|
| + data_deps = [ ":helper(//toolchains:32)" ]
|
| }
|
| }
|
|
|
|
|