Skip to content

Commit a897ec0

Browse files
committed
Update cpp-for-cscharp.md
1 parent e53fc1e commit a897ec0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/posts/cpp-for-cscharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1488,14 +1488,14 @@ But this is not a hard rule, there are exceptions.
14881488

14891489
**L-value:**
14901490
- is persistent
1491-
- has an address in memory
1491+
- has a persistent address in memory
14921492
- often has a name and an identity
14931493
- is often to the left of the ``=`` operator
14941494
- you can bind a reference to it with the ``&`` symbol
14951495

14961496
**R-value:**
1497-
- exists temporarily
1498-
- has no address in memory
1497+
- is temporary
1498+
- has no persistent address in memory
14991499
- doesnt have a name and an identity
15001500
- is often to the right of the ``=`` operator
15011501
- you can bind a reference to it with the ``&&`` symbol

0 commit comments

Comments
 (0)