Skip to content

Commit 75f51e3

Browse files
fix comments (#8)
1 parent 09dbb12 commit 75f51e3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

lib/src/isolation_level.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/// https://www.postgresql.org/docs/current/transaction-iso.html
1+
/// [postgresql/Transaction Isolation](https://www.postgresql.org/docs/current/transaction-iso.html).
22
enum IsolationLevel {
3-
/// [postgresql/Transaction Isolation/Read Committed Isolation Level](https://www.postgresql.org/docs/current/transaction-iso.html#XACT-READ-COMMITTED)
3+
/// [postgresql/Transaction Isolation/Read Committed Isolation Level](https://www.postgresql.org/docs/current/transaction-iso.html#XACT-READ-COMMITTED).
44
readCommitted,
55

6-
/// [postgresql/Transaction Isolation/Repeatable Read Isolation Level](https://www.postgresql.org/docs/current/transaction-iso.html#XACT-REPEATABLE-READ)
6+
/// [postgresql/Transaction Isolation/Repeatable Read Isolation Level](https://www.postgresql.org/docs/current/transaction-iso.html#XACT-REPEATABLE-READ).
77
repeatableRead,
88

9-
/// [postgresql/Transaction Isolation/Serializable Isolation Level](https://www.postgresql.org/docs/current/transaction-iso.html#XACT-SERIALIZABLE)
9+
/// [postgresql/Transaction Isolation/Serializable Isolation Level](https://www.postgresql.org/docs/current/transaction-iso.html#XACT-SERIALIZABLE).
1010
serializable;
1111

1212
/// Parses a string containing an [IsolationLevel] literal into its instance.

lib/src/query_object.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:deno_postgres_interop/deno_postgres_interop.dart';
22
import 'package:deno_postgres_interop/src/util.dart';
33

4-
/// [[email protected]/QueryArguments](https://deno.land/x/[email protected]/query/query.ts?s=QueryArguments)
4+
/// [[email protected]/QueryArguments](https://deno.land/x/[email protected]/query/query.ts?s=QueryArguments).
55
typedef QueryArguments = Object;
66

77
/// Common method between all Clients.

lib/src/transaction_options.dart

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import 'dart:js_util';
33

44
import 'package:deno_postgres_interop/src/isolation_level.dart';
55

6-
/// [[email protected]/TransactionOptions](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions)
6+
/// [[email protected]/TransactionOptions](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions).
77
@JS()
88
class TransactionOptions {
9-
/// [[email protected]/TransactionOptions/snapshot](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions)
9+
/// [[email protected]/TransactionOptions/snapshot](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions).
1010
external String? get snapshot;
1111

12-
/// [[email protected]/TransactionOptions/constructor](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions)
12+
/// [[email protected]/TransactionOptions/constructor](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions).
1313
factory TransactionOptions({
1414
IsolationLevel? isolationLevel,
1515
bool? isReadOnly,
@@ -22,15 +22,15 @@ class TransactionOptions {
2222
}) as TransactionOptions;
2323
}
2424

25-
/// [[email protected]/TransactionOptions](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions)
25+
/// [[email protected]/TransactionOptions](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions).
2626
extension TransactionOptionsProps on TransactionOptions {
27-
/// [[email protected]/TransactionOptions/isolation_level](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions)
27+
/// [[email protected]/TransactionOptions/isolation_level](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions).
2828
IsolationLevel? get isolationLevel {
2929
final jsProperty = getProperty<String?>(this, 'isolation_level');
3030

3131
return jsProperty == null ? null : IsolationLevel.parse(jsProperty);
3232
}
3333

34-
/// [[email protected]/TransactionOptions/read_only](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions)
34+
/// [[email protected]/TransactionOptions/read_only](https://deno.land/x/[email protected]/mod.ts?s=TransactionOptions).
3535
bool? get isReadOnly => getProperty(this, 'read_only');
3636
}

0 commit comments

Comments
 (0)