From e0e543af742d6d96c2c6aec9af9274de0986866b Mon Sep 17 00:00:00 2001 From: Naphtalene Date: Sat, 31 Jul 2021 14:10:50 +0200 Subject: [PATCH] Update README.md --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f92e064..7885dbf 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,14 @@ represent and access a 2d grid of heterogeneous type easily chunk ck; - // access + // access - auto [elevation_, tile_id_] = ck.get(10, 30); + auto [elevation_, tile_id_] = ck.get(10, 30); - // modify + // modify - elevation_ = 50; - tile_id_ = 10; - } + elevation_ = 50; + tile_id_ = 10; ```