Skip to content

Commit 6bcbf83

Browse files
committed
Update README.md
1 parent 5ea4ba1 commit 6bcbf83

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

src/Infra/Cache/Infra.Caching.Memory/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Implement memory cache mechanism with Microsoft.Extensions.Caching.Memory.
1616
builder.Services.AddSingleton<ICache, MemoryCache>();
1717
```
1818

19-
> 注入 ICache 來使用記憶體快取。
19+
> 注入 `ICache` 來使用記憶體快取。
2020

21-
2. Inject ICache to use memory cache.
21+
2. Inject `ICache` to use memory cache.

src/Infra/Cache/Infra.Caching.Redis/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ Implement distributed cache mechanism with Microsoft.Extensions.Caching.StackExc
3535
builder.Services.AddSingleton<ICache, RedisCache>();
3636
```
3737

38-
> 注入 ICache 來使用分散式快取。
38+
> 注入 `ICache` 來使用分散式快取。
3939

40-
3. Inject ICache to use distributed cache.
40+
3. Inject `ICache` to use distributed cache.

src/Infra/Crypto/Infra.Crypto/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Implement encryption and decryption mechanism.
1313
builder.Services.AddSingleton<ICryptoFactory, CryptoFactory>();
1414
```
1515

16-
> 注入 ICryptoFactory 並建立 ICryptoAlgorithm 來加解密資料。
16+
> 注入 `ICryptoFactory` 並建立 `ICryptoAlgorithm` 來加解密資料。
1717

18-
2. Create ICryptoAlgorithm with injected ICryptoFactory to encrypt or decrypt your data.
18+
2. Create `ICryptoAlgorithm` with injected `ICryptoFactory` to encrypt or decrypt your data.

src/Infra/Email/Infra.Email.Mailgun/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ Implement send mail mechanism with Mailgun API.
3636
builder.Services.AddSingleton<IMailClient, MailgunClient>();
3737
```
3838

39-
> 注入 IMailClient 來送信。
39+
> 注入 `IMailClient` 來送信。
4040

41-
3. Inject IMailClient to send mail.
41+
3. Inject `IMailClient` to send mail.

src/Infra/Email/Infra.Email.Smtp/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Implement send mail mechanism with MailKit.
4040
builder.Services.AddSingleton<IMailClient, SmtpClient>();
4141
```
4242

43-
> 注入 IMailClient 來送信。
43+
> 注入 `IMailClient` 來送信。
4444

45-
3. Inject IMailClient to send mail.
45+
3. Inject `IMailClient` to send mail.

src/Infra/FileAccess/Infra.FileAccess.Ftp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ Implement ftp file access mechanism with FluentFTP.
4242

4343
> 注入 `IFileAccess` 來使用 FTP 檔案存取。
4444

45-
3. Inject IFileAccess to use ftp file access.
45+
3. Inject `IFileAccess` to use ftp file access.

src/Infra/FileAccess/Infra.FileAccess.Grpc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ Implement file access mechanism with gRPC.
3838
builder.Services.AddSingleton<IFileAccess, GrpcFileAccess>();
3939
```
4040

41-
> 注入 IFileAccess 來使用 gRPC 檔案存取。
41+
> 注入 `IFileAccess` 來使用 gRPC 檔案存取。
4242

43-
3. Inject IFileAccess to use gRPC file access.
43+
3. Inject `IFileAccess` to use gRPC file access.

src/Infra/FileAccess/Infra.FileAccess.Physical/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ Implement physical file access mechanism.
3030
builder.Services.AddSingleton<IFileAccess, PhysicalFileAccess>();
3131
```
3232

33-
> 注入 IFileAccess 來使用實體檔案存取。
33+
> 注入 `IFileAccess` 來使用實體檔案存取。
3434

35-
3. Inject IFileAccess to use physical file access.
35+
3. Inject `IFileAccess` to use physical file access.

src/Infra/FileAccess/Infra.FileAccess.Sftp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ Implement sftp file access mechanism with SSH.NET.
4747

4848
> 注入 `IFileAccess` 來使用 SFTP 檔案存取。
4949

50-
3. Inject IFileAccess to use sftp file access.
50+
3. Inject `IFileAccess` to use sftp file access.

src/Infra/Hash/Infra.Hash/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ Implement hash mechanism.
1717
builder.Services.AddSingleton<IHmacFactory, HmacFactory>();
1818
```
1919

20-
> 注入 IHashFactory (or IHmacAlgorithm) 並建立 IHashAlgorithm (or IHmacFactory) 來雜湊資料。
20+
> 注入 `IHashFactory` (or `IHmacAlgorithm`) 並建立 `IHashAlgorithm` (or `IHmacFactory`) 來雜湊資料。
2121

22-
2. Create IHashAlgorithm(or IHmacAlgorithm) with injected IHashFactory(or IHmacFactory) to hash your data.
22+
2. Create `IHashAlgorithm`(or `IHmacAlgorithm`) with injected `IHashFactory`(or `IHmacFactory`) to hash your data.

src/Infra/Storage/Infra.Storage.Minio/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ Implement object storage mechanism with Minio.
3838
builder.Services.AddSingleton<IObjectStorage, MinioStorage>();
3939
```
4040

41-
> 注入 IObjectStorage 來操作物件。
41+
> 注入 `IObjectStorage` 來操作物件。
4242

43-
3. Inject IObjectStorage to operate object.
43+
3. Inject `IObjectStorage` to operate object.

src/Infra/Time/Infra.Time/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Implement time wrapper.
1313
builder.Services.AddSingleton<ITimeWrapper, TimeWrapper>();
1414
```
1515

16-
> 注入 ITimeWrapper 來使用時間包裝器。
16+
> 注入 `ITimeWrapper` 來使用時間包裝器。
1717

18-
2. Inject ITimeWrapper to use time wrapper.
18+
2. Inject `ITimeWrapper` to use time wrapper.

0 commit comments

Comments
 (0)