Skip to content

Commit

Permalink
fix: Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez committed Jul 30, 2024
1 parent 1a0e302 commit ab6162c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion _operations/average_branching_factor.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ flamapy average_branching_factor "path/to/feature/model"
from flamapy.interfaces.python.flamapy_feature_model import FLAMAFeatureModel
# Load the feature model
fm = FLAMAFeatureModel("path/to/feature/model")
# Identify atomic sets
# Average Branching Factor
avbf = fm.average_branching_factor()
print(avbf)
```
Expand Down
4 changes: 2 additions & 2 deletions _operations/commonality.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ flamapy commonality "path/to/feature/model" "path/to/configuration"
from flamapy.interfaces.python.flamapy_feature_model import FLAMAFeatureModel
# Load the feature model
fm = FLAMAFeatureModel("path/to/feature/model")
# Identify atomic sets
commonality = fm.commonality(('path/to/configuration'))
# Commonality
commonality = fm.commonality(("path/to/configuration"))
print(commonality)
```

Expand Down
4 changes: 2 additions & 2 deletions _operations/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ flamapy filter "path/to/feature/model" "path/to/configuration"
from flamapy.interfaces.python.flamapy_feature_model import FLAMAFeatureModel
# Load the feature model
fm = FLAMAFeatureModel("path/to/feature/model")
# Identify atomic sets
operation = fm.filter(('path/to/configuration'))
# Filter
operation = fm.filter(("path/to/configuration"))
print(operation)
```

Expand Down
2 changes: 1 addition & 1 deletion _operations/leaf_features.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ flamapy leaf_features "path/to/feature/model"
from flamapy.interfaces.python.flamapy_feature_model import FLAMAFeatureModel
# Load the feature model
fm = FLAMAFeatureModel("path/to/feature/model")
# Identify atomic sets
# Identify leaf features
operation = fm.leaf_features()
print(operation)
```
Expand Down
2 changes: 1 addition & 1 deletion _operations/max_depth.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ flamapy max_depth "path/to/feature/model"
from flamapy.interfaces.python.flamapy_feature_model import FLAMAFeatureModel
# Load the feature model
fm = FLAMAFeatureModel("path/to/feature/model")
# Identify atomic sets
# Identify max depth
operation = fm.max_depth()
print(operation)
```
Expand Down
4 changes: 2 additions & 2 deletions _operations/satisfiable_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ flamapy satisfiable_configuration "path/to/feature/model" "path/to/configuration
from flamapy.interfaces.python.flamapy_feature_model import FLAMAFeatureModel
# Load the feature model
fm = FLAMAFeatureModel("path/to/feature/model")
# Identify atomic sets
operation = fm.satisfiable_configuration(('path/to/configuration'))
# Identify if it is a satisfiable configuration
operation = fm.satisfiable_configuration(("path/to/configuration"))
print(operation)
```

Expand Down

0 comments on commit ab6162c

Please sign in to comment.