Skip to content

Commit 58dff38

Browse files
authored
Fix some typos (#250)
* Update all of the version strings * Fix some typos
1 parent 2c7a2c4 commit 58dff38

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ deploy-ms-idp: ## 🔐 Create an Identity Provider
3535
@echo -e "\e[34m$@\e[0m" || true
3636
cd deploy && pwsh ./New-IdentityProvider.ps1
3737

38-
generate-access-token: ## 🔐 Generate and access token
38+
generate-access-token: ## 🔐 Generate an access token
3939
@echo -e "\e[34m$@\e[0m" || true
4040
./scripts/generate_access_token.sh
4141

data-reconciliation-app/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ deploy-mccf: ## 🚀 Deploy Managed CCF
102102
deploy-ms-idp: ## 🔐 Create an Identity Provider
103103
@cd .. && $(MAKE) deploy-ms-idp
104104

105-
generate-access-token: ## 🔐 Generate and access token
105+
generate-access-token: ## 🔐 Generate an access token
106106
@cd .. && $(MAKE) generate-access-token
107107

108108
# Keep this at the bottom.

data-reconciliation-app/docs/adr/03-reconciliation-logic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ When a user requests a reconciliation report via the `/report` endpoint, it is g
2121

2222
This decouples data ingestion from reconciliation reporting.
2323

24-
Reconciliation is implemented by querying CFF KV Store for all the keys this user has submitted. Any keys unknown to this user are not used in the reconciliation report. This ensures the user only sees a report with their submitted data.
24+
Reconciliation is implemented by querying CCF KV Store for all the keys this user has submitted. Any keys unknown to this user are not used in the reconciliation report. This ensures the user only sees a report with their submitted data.
2525

2626
## Scenarios
2727

data-reconciliation-app/src/repositories/kv-repository.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,54 +3,54 @@ import { ReconciledRecord } from "../models/reconciled-record";
33
import { ServiceResult } from "../utils/service-result";
44

55
/**
6-
* Generic Key-Value implementation wrapping CFF TypedKvMap storage engine
6+
* Generic Key-Value implementation wrapping CCF TypedKvMap storage engine
77
*/
88
export interface IRepository<T> {
99
/**
10-
* Store {T} in CFF TypedKvMap storage by key
10+
* Store {T} in CCF TypedKvMap storage by key
1111
* @param {string} key
1212
* @param {T} value
1313
*/
1414
set(key: string, value: T): ServiceResult<T>;
1515

1616
/**
17-
* Retrive {T} in CFF TypedKvMap storage by key
17+
* Retrive {T} in CCF TypedKvMap storage by key
1818
* @param {string} key
1919
* @param {T} value
2020
*/
2121
get(key: string): ServiceResult<T>;
2222

2323
/**
24-
* Check if {T} exists in CFF TypedKvMap storage by key
24+
* Check if {T} exists in CCF TypedKvMap storage by key
2525
* @param {string} key
2626
* @param {T} value
2727
*/
2828
has(key: string): ServiceResult<boolean>;
2929

3030
/**
31-
* Retrieve all keys in CFF TypedKvMap storage
31+
* Retrieve all keys in CCF TypedKvMap storage
3232
*/
3333
keys(): ServiceResult<string[]>;
3434

3535
/**
36-
* Retrieve all values in CFF TypedKvMap storage
36+
* Retrieve all values in CCF TypedKvMap storage
3737
*/
3838
values(): ServiceResult<T[]>;
3939

4040
/**
41-
* Get size of CFF TypedKvMap storage
41+
* Get size of CCF TypedKvMap storage
4242
* @returns {ServiceResult<number>}
4343
*/
4444
get size(): ServiceResult<number>;
4545

4646
/**
47-
* Iterate through CFF TypedKvMap storage by key
47+
* Iterate through CCF TypedKvMap storage by key
4848
* @param callback
4949
*/
5050
forEach(callback: (key: string, value: T) => void): ServiceResult<string>;
5151

5252
/**
53-
* Clears CFF TypedKvMap storage
53+
* Clears CCF TypedKvMap storage
5454
*/
5555
clear(): ServiceResult<void>;
5656
}

data-reconciliation-app/src/utils/api-result.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export enum StatusCode {
1010
}
1111

1212
/**
13-
* Status code for CFF network conventions
13+
* Status code for CCF network conventions
1414
*/
1515
export interface CCFResponse {
1616
statusCode: number;
@@ -19,7 +19,7 @@ export interface CCFResponse {
1919
}
2020

2121
/**
22-
* Utility class for wrapping the response with CFF network conventions
22+
* Utility class for wrapping the response with CCF network conventions
2323
*/
2424
export class ApiResult {
2525
/**

decentralize-rbac-app/src/repositories/kv-repository.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,50 +7,50 @@ import { ServiceResult } from "../utils/service-result";
77
*/
88
export interface IRepository<T> {
99
/**
10-
* Store {T} in CFF TypedKvMap storage by key
10+
* Store {T} in CCF TypedKvMap storage by key
1111
* @param {string} key
1212
* @param {T} value
1313
*/
1414
set(key: string, value: T): ServiceResult<T>;
1515

1616
/**
17-
* Retrive {T} in CFF TypedKvMap storage by key
17+
* Retrive {T} in CCF TypedKvMap storage by key
1818
* @param {string} key
1919
* @param {T} value
2020
*/
2121
get(key: string): ServiceResult<T>;
2222

2323
/**
24-
* Check if {T} exists in CFF TypedKvMap storage by key
24+
* Check if {T} exists in CCF TypedKvMap storage by key
2525
* @param {string} key
2626
* @param {T} value
2727
*/
2828
has(key: string): ServiceResult<boolean>;
2929

3030
/**
31-
* Retrieve all keys in CFF TypedKvMap storage
31+
* Retrieve all keys in CCF TypedKvMap storage
3232
*/
3333
keys(): ServiceResult<string[]>;
3434

3535
/**
36-
* Retrieve all values in CFF TypedKvMap storage
36+
* Retrieve all values in CCF TypedKvMap storage
3737
*/
3838
values(): ServiceResult<T[]>;
3939

4040
/**
41-
* Get size of CFF TypedKvMap storage
41+
* Get size of CCF TypedKvMap storage
4242
* @returns {ServiceResult<number>}
4343
*/
4444
get size(): ServiceResult<number>;
4545

4646
/**
47-
* Iterate through CFF TypedKvMap storage by key
47+
* Iterate through CCF TypedKvMap storage by key
4848
* @param callback
4949
*/
5050
forEach(callback: (key: string, value: T) => void): ServiceResult<string>;
5151

5252
/**
53-
* Clears CFF TypedKvMap storage
53+
* Clears CCF TypedKvMap storage
5454
*/
5555
clear(): ServiceResult<void>;
5656

decentralize-rbac-app/src/utils/api-result.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export enum StatusCode {
1010
}
1111

1212
/**
13-
* Status code for CFF network conventions
13+
* Status code for CCF network conventions
1414
*/
1515
export interface CCFResponse {
1616
statusCode: number;
@@ -19,7 +19,7 @@ export interface CCFResponse {
1919
}
2020

2121
/**
22-
* Utility class for wrapping the response with CFF network conventions
22+
* Utility class for wrapping the response with CCF network conventions
2323
*/
2424
export class ApiResult {
2525
/**

0 commit comments

Comments
 (0)