Update README.md

This commit is contained in:
Aaron Boodman
2017-02-21 13:13:44 -08:00
committed by GitHub
parent 784ff847ff
commit 4ea3981ba6

View File

@@ -24,7 +24,7 @@ Unlike Git, Noms is a database, so it also:
Finally, because Noms is content-addressed, it yields a very pleasant programming model.
Working with Noms is ***declarative***. You don't `INSERT` new data, `UPDATE` existing data, or `DELETE` old data. You simply *declare* what the data ought to be right now. Noms figures out how to translate those assertions into physical updates.
Working with Noms is ***declarative***. You don't `INSERT` new data, `UPDATE` existing data, or `DELETE` old data. You simply *declare* what the data ought to be right now. If you commit the same data twice, it will be deduplicated because of content-addressing. If you commit _almost_ the same data, only the part that is different will be written.
<br>