Skip to content
Snippets Groups Projects
Commit acaf89a4 authored by Pascal Engélibert's avatar Pascal Engélibert :bicyclist: Committed by Pascal Engélibert
Browse files

docs: gender-neutral

parent 7ea31e65
No related branches found
No related tags found
1 merge request!40docs: gender-neutral
......@@ -38,7 +38,7 @@ Please read [Developer documentation] before contribute.
5. Push your branch on the gitlab and create a merge request. Briefly explain the purpose of your contribution in the description of the merge request.
6. Tag a Duniter reviewer so he will review your contribution. If you still have no news after several weeks, tag another reviewer or/and talk about your contribution on [the technical forum].
6. Tag a Duniter reviewer so they will review your contribution. If you still have no news after several weeks, tag another reviewer or/and talk about your contribution on [the technical forum].
## List of Duniter's reviewers
......
......@@ -63,7 +63,7 @@ After complying with the above criteria in your commits, you should check that y
git checkout YOU_BRANCH # switch back to your branch
git rebase master # rebase you work on master branch
In case of conflict during rebase that you can not solve, contact a lead developer telling him the hash of the commit on which YOUR_BRANCH is currently based so he can reproduce the rebase and see the conflicts. While waiting for his answer, you can cancel the rebase and work on YOUR_BRANCH without updating:
In case of conflict during rebase that you can not solve, contact a lead developer telling them the hash of the commit on which YOUR_BRANCH is currently based so they can reproduce the rebase and see the conflicts. While waiting for their answer, you can cancel the rebase and work on YOUR_BRANCH without updating:
git rebase --abort
......
......@@ -184,8 +184,8 @@ pub mod pallet {
/// A member will enter the set of authorities in 2 sessions.
/// [member_id]
MemberGoOnline(T::MemberId),
/// A member has lost the right to be part of the authorities, he will be removed from
//// the authority set in 2 sessions.
/// A member has lost the right to be part of the authorities,
/// this member will be removed from the authority set in 2 sessions.
/// [member_id]
MemberRemoved(T::MemberId),
}
......
......@@ -183,7 +183,7 @@ fn test_go_online() {
new_test_ext(3).execute_with(|| {
run_to_block(1);
// Member 12 should be able to set his session keys
// Member 12 should be able to set their session keys
assert_ok!(AuthorityMembers::set_session_keys(
Origin::signed(12),
UintAuthorityId(12).into(),
......@@ -235,7 +235,7 @@ fn test_too_many_authorities() {
new_test_ext(3).execute_with(|| {
run_to_block(1);
// Member 12 set his session keys then go online
// Member 12 sets their session keys then go online
assert_ok!(AuthorityMembers::set_session_keys(
Origin::signed(12),
UintAuthorityId(12).into(),
......@@ -267,7 +267,7 @@ fn test_go_online_then_go_offline_in_same_session() {
new_test_ext(3).execute_with(|| {
run_to_block(1);
// Member 12 set his session keys & go online
// Member 12 sets their session keys & go online
assert_ok!(AuthorityMembers::set_session_keys(
Origin::signed(12),
UintAuthorityId(12).into(),
......@@ -276,7 +276,7 @@ fn test_go_online_then_go_offline_in_same_session() {
run_to_block(2);
// Member 12 should be able to go offline at the same session to "cancel" his previous
// Member 12 should be able to go offline at the same session to "cancel" their previous
// action
assert_ok!(AuthorityMembers::go_offline(Origin::signed(12)),);
......@@ -305,7 +305,7 @@ fn test_go_offline_then_go_online_in_same_session() {
run_to_block(7);
// Member 9 should be able to go online at the same session to "cancel" his previous action
// Member 9 should be able to go online at the same session to "cancel" their previous action
assert_ok!(AuthorityMembers::go_online(Origin::signed(9)),);
// Verify state
......
......@@ -338,7 +338,7 @@ impl<T: Config<I>, I: 'static> pallet_certification::traits::OnRemovedCert<IdtyI
if receiver_received_count < T::MinCertForMembership::get()
&& pallet_membership::Pallet::<T, I>::is_member(&receiver)
{
// Revoke receiver membership and disable his identity
// Revoke receiver membership and disable their identity
if let Err(e) = pallet_membership::Pallet::<T, I>::revoke_membership(
RawOrigin::Root.into(),
Some(receiver),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment