Shorter!

Example

(v1) Go. An identifier is {{c1::exported}} just if {{c2::its name starts with a capital letter}}.
(v2) Go. An identifier is {{c1::exported}} just if {{c2::it’s capitalized}}.

Fit words to world

Example

How
copy(slice2, slice1)

Effect
(v1) copy values from slice1 to slice2, returning the number of elements copied
(v2) copy values to slice1 from slice2, returning the number of elements copied

Example

How
read var file

Effect
(v1) read the first line from file, saving it in var
(v2) read into var the first line from file