From 89b1c8df9a475d6d16c9762bf86516d0f863d4b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pat=20M=C3=A4chler?= Date: Tue, 4 Jul 2017 18:19:13 +0200 Subject: [PATCH 1/2] Reference correct subsection Related to this change https://github.com/google/lovefield/commit/5d1633ad6a459d4cae5a3851cc74d3571ddb82e0 --- docs/spec/03_life_of_db.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spec/03_life_of_db.md b/docs/spec/03_life_of_db.md index 8634e57f..5fc6ea29 100644 --- a/docs/spec/03_life_of_db.md +++ b/docs/spec/03_life_of_db.md @@ -23,7 +23,7 @@ It will do the following: `connect()` shall be called only once each session. In rare circumstances, one can call `close()` on the opened connection first, then call `connect()` again. However, this is not guaranteed to work due to IndexedDB limitations, -see [Data Store](02_data_store.md) for details. Calling `connect()` when an +see [IndexedDB Store](02_data_store.md#23-indexeddb-store) for details. Calling `connect()` when an open connection exists will result in an exception. Users are free to connect to two or more databases simultaneously in the same From 0dab948935f67a451d7b34261baa45bee900ed37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pat=20M=C3=A4chler?= Date: Tue, 4 Jul 2017 18:27:56 +0200 Subject: [PATCH 2/2] Update 03_life_of_db.md fix line length --- docs/spec/03_life_of_db.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/spec/03_life_of_db.md b/docs/spec/03_life_of_db.md index 5fc6ea29..a173a972 100644 --- a/docs/spec/03_life_of_db.md +++ b/docs/spec/03_life_of_db.md @@ -23,8 +23,8 @@ It will do the following: `connect()` shall be called only once each session. In rare circumstances, one can call `close()` on the opened connection first, then call `connect()` again. However, this is not guaranteed to work due to IndexedDB limitations, -see [IndexedDB Store](02_data_store.md#23-indexeddb-store) for details. Calling `connect()` when an -open connection exists will result in an exception. +see [IndexedDB Store](02_data_store.md#23-indexeddb-store) for details. +Calling `connect()` when an open connection exists will result in an exception. Users are free to connect to two or more databases simultaneously in the same session. Users shall not connect to the same database more than once in the same