typo guide c more-math rightshift (#31663)

* add output missing line; 'for' C guide in Spanish

* typo - update the right-shift variable from c to b

* typo - ES change var of right-shift from c to b

* typo - AR change the right-shift oper from c to b

* typo - CN update var of rightshift from 'c' to 'b'

* typo - PT update var of right-shift 'c' -> 'b'

* typo - RU update var of right-shift from 'c' to 'b'
This commit is contained in:
eliberator
2018-12-17 18:48:36 +01:00
committed by Christopher McCormack
parent ae9e79c31b
commit dcceee67fc
7 changed files with 14 additions and 14 deletions

View File

@@ -114,7 +114,7 @@ This will shift `a` to the left by `b` bits, and set that result equal to `c`.
This example will shift `a` to the right by `b` bits, and set that result equal to `c`.
```C
c = a >> c;
c = a >> b;
```